home *** CD-ROM | disk | FTP | other *** search
/ The Ring Press Kit / The Ring Press Kit.iso / mac / The Ring.dxr / scripts_2_setDelim.ls < prev    next >
Encoding:
Text File  |  2002-09-24  |  132 b   |  9 lines

  1. on setDelim
  2.   global gSep
  3.   if (the environment).platform contains "Windows" then
  4.     gSep = "\"
  5.   else
  6.     gSep = ":"
  7.   end if
  8. end
  9.